home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / ada_lrm3.zip / LR3BCA.SRC < prev    next >
Text File  |  1989-03-17  |  544b  |  31 lines

  1.  
  2.  
  3. --                ON-LINE Ada LANGUAGE REFERENCE MANUAL
  4. --        Developed at Nofolk State University
  5. --        Development funded by a grant from the U. S. Army
  6. --        Project ReDTEA
  7. --        Version 1.0 released December 1988
  8. --        Programmer:        Esther M. Lumsdon
  9. --        Project Director:  George C. Harrison, PhD
  10.  
  11.  
  12.  
  13. ---------------
  14. -- IBM PC/AT --
  15. --------------- 
  16.  
  17.  
  18. package body MACHINE_SPECIFIC is 
  19.  
  20.  
  21.   procedure CLS is 
  22.   -- author: George C. Harrison
  23.  
  24.   begin
  25.     PUT(ASCII.ESC & "[2J"); 
  26.   end CLS; 
  27.  
  28.  
  29.  
  30. end MACHINE_SPECIFIC; 
  31.